Configuration data
LiveHub AI Framework automatically populates the following variables from agent’s configuration:
llm_model– LLM model, for example,gpt-4o-minitemperature– LLM temperaturemax_tokens– maximum number of tokens that LLM can outputmax_turns– maximum number of User/LLM interactionsdocuments– True, if agent has access to some documentstools– True, if agent is equipped with some toolssubagents– True, if agent has some sub-agents definedorchestration_mode– orchestration mode for multi-agent topologies (consult/delegate/delegate_with_history)document_mode– document mode (rag/doc_search/prompt/doc_get)
Configuration data may be used in agent’s prompt / welcome message / Tools parameters, similar to the agent variables. For example:
{{#if documents}}
If you receive extracts from the documents, use them to answer the questions.
Prioritize data from the extracts over prior knowledge.
{{/if}}